Inverts the order of the elements in a parallel sequence.
Namespace:
System.Linq
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function Reverse(Of TSource) ( _
source As ParallelQuery(Of TSource) _
) As ParallelQuery(Of TSource) |
Type Parameters
- TSource
- The type of the elements of source.
Return Value
A sequence whose elements correspond to those of the input sequence in reverse order.
Exceptions
Exception | Condition |
---|
System..::.ArgumentNullException |
source is a null reference (Nothing in Visual Basic).
|
See Also